Ignore power down event with disable_powersave=1 module option - #18
Open
ValdikSS wants to merge 1 commit into
Open
Ignore power down event with disable_powersave=1 module option#18ValdikSS wants to merge 1 commit into
ValdikSS wants to merge 1 commit into
Conversation
When the chip is in lower power state, it listens only for the packets which destination MAC match device's MAC address. Incoming broadcast and multicast packets, which MAC does not equal to the device MAC, gets dropped. This breaks mDNS and other protocols. Power saving works as follows: the chip sends PWR_DOWN event to the kernel module when it's ready to go into lower state, and if the kernel is also ready (nothing in tx queue), it replies with ACK. Add disable_powersave=1 kernel option to ignore PWR_DOWN event completely to reliably accept multicast, at the cost of +0.4W Link: orangepi-xunlong/linux-orangepi#98 (comment)
ValdikSS
force-pushed
the
fix-multicast
branch
from
August 22, 2026 04:52
9fcb697 to
c572724
Compare
Author
|
So apparently this is some kind of a router issue as well. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
When the chip is in lower power state, it listens only for the packets which destination MAC match device's MAC address.
Incoming broadcast and multicast packets, which MAC does not equal to the device MAC, gets dropped.
This breaks mDNS and other protocols.
Power saving works as follows: the chip sends PWR_DOWN event to the kernel module when it's ready to go into lower state, and if the kernel is also ready (nothing in tx queue), it replies with ACK.
Add disable_powersave=1 kernel option to ignore PWR_DOWN event completely to reliably accept multicast, at the cost of +0.4W
Link: orangepi-xunlong/linux-orangepi#98 (comment)